home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-03-15 | 1.9 KB | 37 lines | [TEXT/R*ch] |
- #!/bin/sh
-
- case "$1" in
- m68k-hp-hpux*) host_makefile_frag=config/mh-hp300 ;;
- m68k-apollo-sysv*) host_makefile_frag=config/mh-apollo68 ;;
- m68k-apollo-bsd*) host_makefile_frag=config/mh-a68bsd ;;
- m88k-motorola-sysv*) host_makefile_frag=config/mh-delta88;;
- m88k-dg-dgux*) host_makefile_frag=config/mh-dgux ;;
- mips*-dec-ultrix*) host_makefile_frag=config/mh-decstation ;;
- mips*-sgi-irix5*) host_makefile_frag=config/mh-irix5 ;;
- mips*-sgi-irix4*) host_makefile_frag=config/mh-irix4 ;;
- mips*-sgi-irix3*) host_makefile_frag=config/mh-sysv ;;
- mips*-*-sysv4*) host_makefile_frag=config/mh-sysv4 ;;
- mips*-*-sysv*) host_makefile_frag=config/mh-riscos ;;
- i[345]86-ncr-sysv4*) host_makefile_frag=config/mh-ncr3000 ;;
- i[345]86-*-sco*) host_makefile_frag=config/mh-sco ;;
- i[345]86-*-isc*) host_makefile_frag=config/mh-sysv ;;
- i[345]86-*-linux*) host_makefile_frag=config/mh-linux ;;
- i[345]86-*-solaris2*) host_makefile_frag=config/mh-sysv4 ;;
- i[345]86-*-aix*) host_makefile_frag=config/mh-aix386 ;;
- vax-*-ultrix2*) host_makefile_frag=config/mh-vaxult2 ;;
- *-ibm-aix*) host_makefile_frag=config/mh-aix ;;
- *-bull-bosx*) host_makefile_frag=config/mh-aix ;;
- *-*-solaris2*) host_makefile_frag=config/mh-solaris ;;
- m68k-sun-*) host_makefile_frag=config/mh-sun3 ;;
- *-sun-*) host_makefile_frag=config/mh-sun ;;
- *-hp-hpux*) host_makefile_frag=config/mh-hpux ;;
- *-*-hiux*) host_makefile_frag=config/mh-hpux ;;
- rs6000-*-lynxos*) host_makefile_frag=config/mh-lynxosrs6k ;;
- *-*-lynxos*) host_makefile_frag=config/mh-lynxos ;;
- *-*-sysv4*) host_makefile_frag=config/mh-sysv4 ;;
- *-*-sysv*) host_makefile_frag=config/mh-sysv ;;
- *) host_makefile_frag=config/mh-empty ;;
- esac
-
- echo $2/$host_makefile_frag
-